home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / othergnu / gnuchess.zoo / MAKEFILE.ST < prev    next >
Encoding:
Text File  |  1988-08-09  |  1.3 KB  |  47 lines

  1. #
  2. # Makefile for CHESS
  3. #
  4. # Copyright (C) 1986, 1987, 1988 Free Software Foundation, Inc.
  5. #
  6. # This file is part of CHESS.
  7. #
  8. # CHESS is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY.  No author or distributor
  10. # accepts responsibility to anyone for the consequences of using it
  11. # or for whether it serves any particular purpose or works at all,
  12. # unless he says so in writing.  Refer to the CHESS General Public
  13. # License for full details.
  14. #
  15. # Everyone is granted permission to copy, modify and redistribute
  16. # CHESS, but only under the conditions described in the
  17. # CHESS General Public License.   A copy of this license is
  18. # supposed to have been given to you along with CHESS so you
  19. # can know your rights and responsibilities.  It should be in a
  20. # file named COPYING.  Among other things, the copyright notice
  21. # and this notice must be preserved on all copies.
  22. #
  23. #
  24. # Makefile for Megamax Laser C:
  25. # gnuchess is the curses version
  26. # nchess   is the 'dumb tty' version
  27. #
  28. #
  29.  
  30. all : gnuchess nchess
  31.  
  32. gnuchess: gnuchess.o uxdsp.o
  33.     $(CC) -o gnuchess.tos gnuchess.o uxdsp.o curses.o
  34.  
  35. nchess: gnuchess.o nondsp.o
  36.     $(CC) -o nchess.tos gnuchess.o nondsp.o
  37.  
  38. gnuchess.o: gnuchess.c
  39.     $(CC) -c gnuchess.c
  40.  
  41. uxdsp.o: uxdsp.c
  42.     $(CC) -c uxdsp.c
  43.  
  44. nondsp.o: nondsp.c
  45.     $(CC) -c nondsp.c
  46.  
  47.